home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xmcd-1.4 / common.d / Makefile.std < prev    next >
Encoding:
Makefile  |  1995-05-10  |  1.2 KB  |  46 lines

  1. #
  2. #   @(#)Makefile.std    5.2 94/12/28
  3. #
  4. #   Imakefile for libutil (common utility routines for xmcd, cda and libdi)
  5. #
  6. #    xmcd  - Motif(tm) CD Audio Player
  7. #    cda   - Command-line CD Audio Player
  8. #    libdi - CD Audio Player Device Interface Library
  9. #
  10. #   NOTE: You should use this only if you don't have imake!
  11. #
  12. #   Copyright (C) 1995  Ti Kan
  13. #   E-mail: ti@amb.org
  14. #
  15. #   This program is free software; you can redistribute it and/or modify
  16. #   it under the terms of the GNU General Public License as published by
  17. #   the Free Software Foundation; either version 2 of the License, or
  18. #   (at your option) any later version.
  19. #
  20. #   This program is distributed in the hope that it will be useful,
  21. #   but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23. #   GNU General Public License for more details.
  24. #
  25. #   You should have received a copy of the GNU General Public License
  26. #   along with this program; if not, write to the Free Software
  27. #   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  28. #
  29.  
  30. include ../make.inc
  31.  
  32. LIBUTIL=libutil.a
  33.  
  34. SRCS=    util.c
  35. OBJS=    util.o
  36.  
  37. all: $(LIBUTIL)
  38.  
  39. $(LIBUTIL): $(OBJS)
  40.     rm -f $@
  41.     $(AR) $@ $(OBJS)
  42.     $(RANLIB) $@
  43.  
  44. install:
  45.  
  46.